home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C++ für Kids
/
C++ for kids.iso
/
SETUP
/
US
/
CBUILDER
/
DATA.Z
/
SYSREG.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1997-02-13
|
823b
|
28 lines
unit SysReg;
interface
uses DsgnIntf, Classes;
procedure Register;
implementation
uses SysUtils, Dialogs, FileCtrl, FiltEdit, StdCtrls, ExtCtrls, LibConst,
MPlayer, Forms;
procedure Register;
begin
RegisterComponents(LoadStr(srDialogs), [TOpenDialog, TSaveDialog, TFontDialog,
TColorDialog, TPrintDialog, TPrinterSetupDialog, TFindDialog,
TReplaceDialog]);
RegisterComponents(LoadStr(srSystem), [TTimer, TPaintBox, TFileListBox,
TDirectoryListBox, TDriveComboBox, TFilterComboBox, TMediaPlayer]);
RegisterPropertyEditor(TypeInfo(string), TFilterComboBox, 'Filter', TFilterProperty);
RegisterPropertyEditor(TypeInfo(string), TOpenDialog, 'Filter', TFilterProperty);
RegisterPropertyEditor(TypeInfo(string), TMediaPlayer, 'Filename', TMPFilenameProperty);
end;
end.